/**
Configure remotes,When a repo is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repo it was forked from.
To keep track of the original repo, you need to add another remote named upstream:
cd Spoon-Knife
# Changes the active directory in the prompt to the newly cloned "Spoon-Knife" directory
git remote -v
# 首先要先确定一下是否建立了主repo的远程源
git remote add upstream https://github.com/octocat/Spoon-Knife.git
# Assigns the original repo to a remote called "upstream"
# 如果里面只能看到你自己的两个源(fetch 和 push),那就需要添加主repo的源,git remote add upstream URL
git remote -v
# 再次确定一下是否建立了主repo的远程源,现在你就能看到upstream了,like:
# origin git@github.com:cobish/fork-demo.git (fetch)
# origin git@github.com:cobish/fork-demo.git (push)
# upstream https://github.com/wabish/fork-demo.git (fetch)
# upstream https://github.com/wabish/fork-demo.git (push)
Pull in (Fetch then merge) upstream changes. If the original repo you forked your project from gets updated, you can add those updates to your fork by running the following code:
git fetch upstream
# Fetches any new changes from the original repo. Pulls in changes not present in your local repository, without modifying your files. 使用 fetch 命令更新,fetch 后会被存储在一个本地分支 upstream/master 上。
git merge upstream/master
# Merges any changes fetched into your working files,合并到本地分支。切换到 master 分支,合并 upstream/master 分支。
git push origin master
Collaborative translation、cooperative authoring 有些朋友可能不太清楚如何帮忙翻译,我这里写一个简单的流程,大家可以参考一下:
git branch develop
来创建一个新分支git checkout develop
来切换到新分支git remote add upstream https://github.com/numbbbbb/the-swift-programming-language-in-chinese.git
把我的库添加为远端库git remote update
更新git fetch upstream gh-pages
拉取我的库的更新到本地git rebase upstream/gh-pages
将我的更新合并到你的分支如果修改过程中我的库有了更新,请重复6、7、8步。
修改之后,首先push到你的库,然后登录GitHub,在你的库的首页可以看到一个 pull request 按钮,点击它,填写一些说明信息,然后提交即可。
__
这是一级引用
这是二级引用
这是三级引用 这是一级引用
var canvas = document.getElementById("canvas");
var context = canvas.getContext("2d");
使用导入图片
粗体1 粗体2 斜体1 斜体2
序号 | 交易名 | 交易说明 | 备注 |
---|---|---|---|
1 | prfcfg | 菜单配置 | 可以通过此交易查询到所有交易码和菜单的对应关系 |
2 | gentmo | 编译所有交易 | |
100000 | sysdba | 数据库表模型汇总 |
例1:行内链接
这就是我们常用的地址:Baidu 这就是我们常用的地址:Baidu
例2:参考式链接
这就是我们常用的地址:[Baidu][1] [1]:www.baidu.com “百度一下,你就知道”
标签: 数学 英语 Tags: 数学 英语
这是一个注脚测试[^footer1]。 [^footer1]: 这是一个测试,用来阐释注脚。